CommandSetMetadata.fromJson constructor

CommandSetMetadata.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CommandSetMetadata.fromJson(Map<String, dynamic> json) => CommandSetMetadata(
  key: json['key'] as String,
  value: json['value'] == null ? null : json['value'] as String,
);