MultiEntityRename.fromJson constructor

MultiEntityRename.fromJson(
  1. Map json_
)

Implementation

MultiEntityRename.fromJson(core.Map json_)
    : this(
        newNamePattern: json_.containsKey('newNamePattern')
            ? json_['newNamePattern'] as core.String
            : null,
        sourceNameTransformation:
            json_.containsKey('sourceNameTransformation')
                ? json_['sourceNameTransformation'] as core.String
                : null,
      );