fromJson static method
Inherited by: InputBackgroundLocal InputBackgroundPrevious InputBackgroundRemote
Implementation
static InputBackgroundPrevious? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputBackgroundPrevious(
messageId: (json['message_id'] as int?) ?? 0,
);
}