GoogleServiceAccount.fromJson constructor

GoogleServiceAccount.fromJson(
  1. Map json_
)

Implementation

GoogleServiceAccount.fromJson(core.Map json_)
  : this(
      accountEmail: json_['accountEmail'] as core.String?,
      subjectId: json_['subjectId'] as core.String?,
    );