Skip to content

Instantly share code, notes, and snippets.

View DeveloperFlutter2023's full-sized avatar

DeveloperFlutter2023

View GitHub Profile
@DeveloperFlutter2023
DeveloperFlutter2023 / main.dart
Last active November 10, 2023 16:19
SistemaGestionBiblioteca
class Usuario {
String nombre;
int edad;
Usuario(this.nombre, this.edad);
}
class Libro {
String titulo;
String autor;