fromMap static method
override
Construct from Map.
Implementation
static PageBlockCaption? 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 text = RichText.fromMap(_map['text'])!;
var credit = RichText.fromMap(_map['credit'])!;
return PageBlockCaption(
extra: extra,
clientId: clientId,
text: text,
credit: credit,
);
}