takeFromMap method

  1. @override
void takeFromMap(
  1. Map<String, dynamic>? from,
  2. {bool copyEntries = true}
)
override

Used for meta-forms in setting deep properties

Implementation

@override
void takeFromMap(Map<String, dynamic>? from, {bool copyEntries = true}) {
  if (from == null) return;

  super.takeFromMap(from, copyEntries: copyEntries);
  for (final entry in from.entries) {
    final key = entry.key;
    final value = entry.value;
    if (value == null) continue;
    switch (key) {
      case "moduleRef":
        _moduleRef = value as String;
        break;
      case "schemas":
        _schemas = toList(value, (item) => IMSchemaDefinition.fromJson(item));
        break;
      case "operations":
        _operations =
            toList(value, (item) => IMOperationDefinition.fromJson(item));
        break;
      default:
        break;
    }
  }
}