CommandSetAway.fromJson constructor

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

Implementation

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