input_message_location property

InputMessageLocation get input_message_location

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

InputMessageLocation get input_message_location {
  try {
    if (rawData["input_message_location"] is Map == false) {
      return InputMessageLocation({});
    }
    return InputMessageLocation(rawData["input_message_location"] as Map);
  } catch (e) {
    return InputMessageLocation({});
  }
}
set input_message_location (InputMessageLocation value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set input_message_location(InputMessageLocation value) {
  rawData["input_message_location"] = value.toJson();
}