input_message_dice property

InputMessageDice get input_message_dice

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

Implementation

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

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

Implementation

set input_message_dice(InputMessageDice value) {
  rawData["input_message_dice"] = value.toJson();
}