ConfigToolInput.fromJson constructor
Implementation
factory ConfigToolInput.fromJson(Map<String, dynamic> json) =>
ConfigToolInput(
action: json['action'] as String,
key: json['key'] as String?,
value: json['value'],
scope: json['scope'] as String? ?? 'user',
);