GoogleSocialConnection.fromMap constructor

GoogleSocialConnection.fromMap(
  1. Map<String, dynamic> map
)

Implementation

GoogleSocialConnection.fromMap(Map<String, dynamic> map)
    : providerId = map['providerId'],
      createdAt = map['createdAt'] is String ? map['createdAt'] : null,
      lastLoginAt = map['lastLoginAt'] is String ? map['lastLoginAt'] : null,
      providerIdentifier = map['providerIdentifier'];