Skip to content

Commit

Permalink
delete unnecessary ignore line
Browse files Browse the repository at this point in the history
  • Loading branch information
dshukertjr committed Jul 24, 2024
1 parent 30191b2 commit 528a04d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/functions_client/lib/src/types.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// ignore_for_file: public_member_api_docs, sort_constructors_first
import 'dart:convert';
import 'dart:typed_data';

Expand Down Expand Up @@ -32,7 +31,8 @@ class FunctionException {
final dynamic details;
final String? reasonPhrase;

const FunctionException({required this.status, this.details, this.reasonPhrase});
const FunctionException(
{required this.status, this.details, this.reasonPhrase});

@override
String toString() =>
Expand Down

0 comments on commit 528a04d

Please sign in to comment.