ImageAnnotationContext.fromJson constructor
ImageAnnotationContext.fromJson(
- Map json_
Implementation
ImageAnnotationContext.fromJson(core.Map json_)
: this(
pageNumber: json_.containsKey('pageNumber')
? json_['pageNumber'] as core.int
: null,
uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
);