RotateServerCaContext.fromJson constructor

RotateServerCaContext.fromJson(
  1. Map json_
)

Implementation

RotateServerCaContext.fromJson(core.Map json_)
    : this(
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
        nextVersion: json_.containsKey('nextVersion')
            ? json_['nextVersion'] as core.String
            : null,
      );