MigrationResult typedef

MigrationResult = ({Object? migrationError, StackTrace? migrationStack, bool success})

A record representing the outcome of a migration execution.

Implementation

typedef MigrationResult = ({
  bool success,
  Object? migrationError,
  StackTrace? migrationStack,
});