EntityMove.fromJson constructor

EntityMove.fromJson(
  1. Map json_
)

Implementation

EntityMove.fromJson(core.Map json_)
    : this(
        newSchema: json_.containsKey('newSchema')
            ? json_['newSchema'] as core.String
            : null,
      );