Secret.fromJson constructor

Secret.fromJson(
  1. Map _json
)

Implementation

Secret.fromJson(core.Map _json)
    : this(
        cloudSecret: _json.containsKey('cloudSecret')
            ? _json['cloudSecret'] as core.String
            : null,
      );