getSeed method

Map<String, dynamic>? getSeed(
  1. String tableName
)

Gets seed data for a table.

Parameters:

  • tableName: The name of the table to retrieve seed data for.

Returns: The seed data or null if not found.

Implementation

Map<String, dynamic>? getSeed(String tableName) {
  return seed[tableName] as Map<String, dynamic>?;
}