BatchDeleteContactsRequest.fromJson constructor

BatchDeleteContactsRequest.fromJson(
  1. Map json_
)

Implementation

BatchDeleteContactsRequest.fromJson(core.Map json_)
    : this(
        resourceNames: json_.containsKey('resourceNames')
            ? (json_['resourceNames'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );