DeveloperRegistration.fromJson constructor
DeveloperRegistration.fromJson(
- Map json_
Implementation
DeveloperRegistration.fromJson(core.Map json_)
: this(
gcpIds:
(json_['gcpIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
name: json_['name'] as core.String?,
);