copyWith method

GetPushReceiverId copyWith({
  1. String? payload,
})

Implementation

GetPushReceiverId copyWith({
  String? payload,
}) =>
    GetPushReceiverId(
      payload: payload ?? this.payload,
    );