BooksRow.fromMap constructor
Implementation
factory BooksRow.fromMap(Map<String, dynamic> map) {
return BooksRow(
bookId: map['bookId'] as int,
title: map['title'] as String,
author: map['author'] as String,
genre: map['genre'] as String,
);
}