ImageAnnotationContext.fromJson constructor

ImageAnnotationContext.fromJson(
  1. 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,
      );