copyWith method

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

Implementation

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