fromJson static method

MatchFacesImage? fromJson(
  1. dynamic jsonObject
)

Implementation

static MatchFacesImage? fromJson(jsonObject) {
  if (jsonObject == null) return null;
  var result = new MatchFacesImage();

  result.imageType = jsonObject["imageType"];
  result.detectAll = jsonObject["detectAll"];
  result.bitmap = jsonObject["bitmap"];
  result.identifier = jsonObject["identifier"];

  return result;
}