inputMessageVideoNote property

InputMessageVideoNote? inputMessageVideoNote

A video note message

Implementation

InputMessageVideoNote? get inputMessageVideoNote {
  if (this is InputMessageVideoNote) {
    return this as InputMessageVideoNote;
  }
  return null;
}