modifyWith method

LocalizedString modifyWith({
  1. Map<String, String> strings = const {},
})

Implementation

LocalizedString modifyWith({Map<String, String> strings = const {}}) {
  if (strings.isEmpty) return this;
  _strings.addAll(strings);
  return this;
}