copyWith method

VgkMapElement copyWith({
  1. required String key,
  2. required String value,
})

Implementation

VgkMapElement copyWith({
  required String key,
  required String value,
}) =>
    VgkMapElement(
      key: key,
      value: value,
    );