fromJson static method
Inherited by: InputBackgroundLocal InputBackgroundPrevious InputBackgroundRemote
Implementation
static InputBackgroundLocal? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputBackgroundLocal(
background: InputFile.fromJson(tdMapFromJson(json['background'])),
);
}