GoogleSocialConnection constructor

GoogleSocialConnection({
  1. required String providerId,
  2. String? createdAt,
  3. String? lastLoginAt,
  4. required String providerIdentifier,
})

Implementation

GoogleSocialConnection({
  required this.providerId,
  this.createdAt,
  this.lastLoginAt,
  required this.providerIdentifier,
});