DeleteAccountResponse.fromJson constructor

DeleteAccountResponse.fromJson(
  1. Map _json
)

Implementation

DeleteAccountResponse.fromJson(core.Map _json)
    : this(
        kind: _json.containsKey('kind') ? _json['kind'] as core.String : null,
      );