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,
      );