fromJson static method
Implementation
static ServiceApiKeySpec fromJson(Map<String, dynamic> json) {
return ServiceApiKeySpec(
role: _apiKeyRoleFromString(json['role'] as String?),
name: json['name'] as String,
autoProvision: json['auto_provision'] as bool?,
);
}