DropTableOptions.fromJson constructor

DropTableOptions.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory DropTableOptions.fromJson(Map<String, Object?> json) =>
    DropTableOptions(
      table: json['table'] as String,
      ifExists: json['ifExists'] as bool? ?? false,
      cascade: json['cascade'] as bool? ?? false,
    );