insertRows abstract method

  1. @Insert.new(onConflict: OnConflictStrategy.replace)
Future<List<int>> insertRows(
  1. List<ModelType> rows
)

Implementation

@Insert(onConflict: OnConflictStrategy.replace)
Future<List<int>> insertRows(List<ModelType> rows);