ServiceProperties.fromJson constructor

ServiceProperties.fromJson(
  1. Map json_
)

Implementation

ServiceProperties.fromJson(core.Map json_)
  : this(
      gcpProject: json_['gcpProject'] as core.String?,
      location: json_['location'] as core.String?,
      zone: json_['zone'] as core.String?,
    );