command property

String? get command

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

String? get command {
  try {
    if (rawData["command"] is String == false) {
      return null;
    }
    return rawData["command"] as String;
  } catch (e) {
    return null;
  }
}
set command (String? value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set command(String? value) {
  rawData["command"] = value;
}