AutomatedDnsCreationSpec.fromJson constructor

AutomatedDnsCreationSpec.fromJson(
  1. Map json_
)

Implementation

AutomatedDnsCreationSpec.fromJson(core.Map json_)
  : this(
      dnsSuffix: json_['dnsSuffix'] as core.String?,
      hostname: json_['hostname'] as core.String?,
      ttl: json_['ttl'] as core.String?,
    );