NsError constructor

const NsError({
  1. int? code,
  2. String? domain,
  3. String? localizedDescription,
  4. String? localizedRecoverySuggestion,
  5. String? localizedFailureReason,
})

Implementation

const NsError(
    {this.code,
    this.domain,
    this.localizedDescription,
    this.localizedRecoverySuggestion,
    this.localizedFailureReason});