InstancesRotateServerCaRequest.fromJson constructor

InstancesRotateServerCaRequest.fromJson(
  1. Map json_
)

Implementation

InstancesRotateServerCaRequest.fromJson(core.Map json_)
    : this(
        rotateServerCaContext: json_.containsKey('rotateServerCaContext')
            ? RotateServerCaContext.fromJson(json_['rotateServerCaContext']
                as core.Map<core.String, core.dynamic>)
            : null,
      );