AccountGoogleMyBusinessLink.fromJson constructor

AccountGoogleMyBusinessLink.fromJson(
  1. Map json_
)

Implementation

AccountGoogleMyBusinessLink.fromJson(core.Map json_)
    : this(
        gmbAccountId: json_.containsKey('gmbAccountId')
            ? json_['gmbAccountId'] as core.String
            : null,
        gmbEmail: json_.containsKey('gmbEmail')
            ? json_['gmbEmail'] as core.String
            : null,
        status: json_.containsKey('status')
            ? json_['status'] as core.String
            : null,
      );