NCMBObject constructor Null safety

NCMBObject(
  1. String _name,
  2. {Map fields = const {}}
)

Initializing NCMBObjct. Required class name.

Implementation

NCMBObject(this._name, {Map fields = const {}}) {
  _fields = {};
}