toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (account != null) 'account': account!,
      if (id != null) 'id': id!,
      if (kind != null) 'kind': kind!,
      if (profile != null) 'profile': profile!,
      if (redirectUri != null) 'redirectUri': redirectUri!,
      if (webproperty != null) 'webproperty': webproperty!,
    };