SubscribeWithGoogleInfo.fromJson constructor

SubscribeWithGoogleInfo.fromJson(
  1. Map json_
)

Implementation

SubscribeWithGoogleInfo.fromJson(core.Map json_)
  : this(
      emailAddress: json_['emailAddress'] as core.String?,
      familyName: json_['familyName'] as core.String?,
      givenName: json_['givenName'] as core.String?,
      profileId: json_['profileId'] as core.String?,
      profileName: json_['profileName'] as core.String?,
    );