InAppSchema constructor

InAppSchema(
  1. Map map
)

Construcotr of InAppSchema

Implementation

InAppSchema(Map map) {
  if (map[_WIDTH] != null) width = int.parse(map[_WIDTH].toString());
  if (map[_CODE] != null) code = map[_CODE].toString();
  if (map[_HEIGHT] != null) height = int.parse(map[_HEIGHT].toString());
}