copyWith method

IfscDetailModel copyWith({
  1. String? responseCode,
  2. String? message,
  3. List<Info>? info,
})

Implementation

IfscDetailModel copyWith({
  String? responseCode,
  String? message,
  List<Info>? info,
}) =>
    IfscDetailModel(
      responseCode: responseCode ?? _responseCode,
      message: message ?? _message,
      info: info ?? _info,
    );