CommandSubscribeMetadata.fromJson constructor

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

Implementation

factory CommandSubscribeMetadata.fromJson(Map<String, dynamic> json) => CommandSubscribeMetadata(
  keys: (json['keys'] as List).map((e) => e as String).toList(),
);