copyWith method

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

Implementation

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