copyWith method

Input$RequiredStatusCheckInput copyWith({
  1. String? appId()?,
  2. String? context,
})

Implementation

Input$RequiredStatusCheckInput copyWith(
        {String? Function()? appId, String? context}) =>
    Input$RequiredStatusCheckInput(
        appId: appId == null ? this.appId : appId(),
        context: context == null ? this.context : context);