insertAll abstract method

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

Implementation

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