fromMap static method
override
Construct from Map.
Implementation
static PageBlockVoiceNote? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var voice_note = VoiceNote.fromMap(_map['voice_note']);
var caption = PageBlockCaption.fromMap(_map['caption'])!;
return PageBlockVoiceNote(
extra: extra,
clientId: clientId,
voice_note: voice_note,
caption: caption,
);
}