ParseSchema.fromJson constructor

ParseSchema.fromJson(
  1. dynamic map
)

Constructs a new schema using Map data from Parse Cloud

Implementation

ParseSchema.fromJson(dynamic map)
    : className = map['className'],
      fields = _parseFields(map['fields']),
      classLevelPermissions = map['classLevelPermissions'],
      indexes = map['indexes'];