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